/*

Feel Free to Look

By Thomas Geier

ziggystar@gmx.de

Random dots performing circling movement.
Dots nearer to the center are smaller and have smaller radiuses.

*/

NUM="1",

Stps="60 + rnd( 120 )",


Aspc=0,

A0="t",			//should be clear
A1="END_TIME-t",	//the same
A2=".7 + rnd( 2.0 )", // Random rotate speed

B0="seed(A0)",

C0="rnd(2)-1",		//X
C1="rnd(2)-1",		//Y
C2="sqrt(C0^2+C1^2)*(.05+rnd(.2))",		//r (dots farer from the center have greater r)

B1="sin( t * a2 )",
B2="cos( t * a2 )",

X0="C0 + b1 * C2",
Y0="C1 + b2 * C2",

Pen="1",


LWdt="C2*40+1",

ConB=0,

Vers=100